home *** CD-ROM | disk | FTP | other *** search
/ Maclife 40 / MACLIFE40.ISO.7z / MACLIFE40.ISO / MACLIFE連載 / 特集II DTPデザインを効率化 / AppleScript⁄サンプル / SampleScript / FinderScript / Finder Quit / Finder Quit.TXT < prev    next >
Text File  |  1997-10-25  |  171b  |  12 lines

  1. tell application "Finder"
  2.     set AppList to (every process)
  3. end tell
  4. repeat with LA in AppList
  5.     tell LA
  6.         quit
  7.     end tell
  8. end repeat
  9. tell application "Finder"
  10.     quit
  11. end tell
  12.